body {
  font-family: "Roboto", sans-serif;
  color: #0c0c0c;
  background-color: #f8f8f8;
  overflow-x: hidden;
}

.layout_padding {
  padding: 90px 0;
}

.layout_padding2 {
  padding: 75px 0;
}

.layout_padding2-top {
  padding-top: 75px;
}

.layout_padding2-bottom {
  padding-bottom: 75px;
}

.layout_padding-top {
  padding-top: 90px;
}

.layout_padding-bottom {
  padding-bottom: 90px;
}

.heading_container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.heading_container h2 {
  position: relative;
  font-weight: bold;
  margin: 0;
}

.heading_container.heading_center {
  align-items: center;
  text-align: center;
}

.heading_container p {
  margin-top: 10px;
  margin-bottom: 0;
}

a,
a:hover,
a:focus {
  text-decoration: none;
  color: initial;
}

.btnx,
.btnx:focus {
  outline: none !important;
  box-shadow: none;
}

/* ================= HEADER ================= */

.hero_area {
  position: relative;
  background-color: #020230;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ✅ FIX: sub pages MUST NOT force viewport height */
body.sub_page .hero_area {
  min-height: unset;
  height: auto;
  padding-bottom: 0;
}

/* ✅ HARD FIX: remove the ghost layout box on sub pages (navbar only) */
body.sub_page .hero_area {
  display: contents;
}

.headerx_section .containerx-fluid {
  padding-right: 25px;
  padding-left: 25px;
}

.navxbar-brand span {
  font-weight: bold;
  color: #ffffff;
  font-size: 24px;
  text-transform: uppercase;
}

.custom_nav-container {
  padding: 10px 0;
}

.custom_nav-container .navxbar-nav .navx-item .navx-link {
  padding: 3px 15px;
  margin: 10px 15px;
  color: #ffffff;
  text-transform: uppercase;
}

/* ================= SECTIONS ================= */

.slider_section {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 45px 0 90px;
}

.about_section .detail-box p {
  color: #999;
  margin-top: 15px;
}

.service_section .box {
  margin-top: 45px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 25px;
  background-color: #fafafa;
  box-shadow: 0 0 5px rgba(0,0,0,0.15);
}

.server_section {
  background: linear-gradient(110deg, transparent 25%, #020230 25%);
  padding: 55px 0;
  color: #ffffff;
}

/* ================= CONTACT ================= */

.contact_section {
  position: relative;
  padding-bottom: 60px; /* ✅ FIX: prevents footer gap */
}

.contact_section .heading_container {
  margin-bottom: 45px;
}

.contact_section .form_container input {
  width: 100%;
  border: 1px solid #b0b0b0;
  height: 50px;
  margin-bottom: 25px;
  padding-left: 15px;
  background-color: transparent;
}

.contact_section .form_container textarea.message-box {
  width: 100%;
  height: 200px;
  padding: 15px;
  resize: vertical;
  box-sizing: border-box;
}

/* ================= PRICING ================= */

.price_section .price_container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.price_section .price_container .box {
  margin: 0;
}

.price_section .price_container .box .detail-box {
  width: 100%;
  padding: 40px 20px;
  background-color: #fff;
  border-radius: 25px;
}

/* ================= FOOTER ================= */

.footerx_section {
  background-color: #020230;
  text-align: center;
  margin-top: 0; /* ✅ FIX: no ghost space */
}

.footerx_section p {
  color: #ffffff;
  padding: 20px 0;
  margin: 0;
  border-top: 1px solid #ffffff;
}

/* === Dedicated Servers Card (Blue Theme) === */
.dedicated-table {
  background: linear-gradient(180deg, #0b1444, #0a0f2e);
  border-radius: 14px;
  box-shadow: 0 15px 40px rgba(3,167,211,0.25);
}

.dedicated-table thead {
  background: rgba(255,255,255,0.05);
}

.dedicated-table th {
  color: #9fdfff;
}

.dedicated-table td {
  color: #ffffff;
}

/* === Dedicated Servers FULL BLUE SECTION FIX === */
.dedicated-section {
  background: linear-gradient(180deg, #0b1444, #0a0f2e);
  padding: 90px 0;
}

/* Remove white background feeling */
.dedicated-section .containerx {
  background: transparent;
}

/* === HERO VISIBILITY FIX (NO LAYOUT CHANGES) === */
.game-hero {
  background: linear-gradient(180deg, #020230, #0b1444);
  padding: 90px 0;
}

.game-hero h1,
.game-hero p {
  color: #ffffff;
}

/* ✅ Dedicated Servers spacing + lag fix (wrapper + table sizing) */
.dedicated-page {
  padding-top: 40px;
  padding-bottom: 60px;
}

.dedicated-table-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  overflow-x: auto;
}

.dedicated-table {
  width: 100%;
  border-collapse: collapse;
}
